home *** CD-ROM | disk | FTP | other *** search
/ Software USA 4 #11 / Software USA Volume 4.11.iso / mac / Educational / mac06 / usr / include / coff / linenum.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-10-29  |  454 b   |  26 lines  |  [TEXT/SPM ]

  1. /* mac06©1997 by HNS/DSITRI hns@computer.org
  2. ** linenum.h
  3. */
  4.  
  5. #ifdef __SC__    /* Symantec C++ for PowerPC 8.0 */
  6. #pragma options align=mac68k
  7. #endif
  8.  
  9. struct lineno
  10.     {
  11.     union
  12.         {
  13.         long    l_symndx;    /* if l_lnno == 0 */
  14.         long    l_paddr;    /* else */
  15.         } l_addr;
  16.     unsigned short    l_lnno;    /* line number */
  17.     };
  18.  
  19. #define LINENO    struct lineno
  20. #define LINESZ    sizeof(LINENO)
  21.  
  22. #ifdef __SC__    /* Symantec C++ for PowerPC 8.0 */
  23. #pragma options align=reset
  24. #endif
  25.  
  26. /* EOF */